/* 基础样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	font-size: 14px;
	color: #0A2342;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

.container {
	margin: 0 auto;
	width: 1200px;
}

/* 顶部 */
.sub_header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.sub_wrap {
	margin: 0 auto;
	width: 1200px;
}

.n_top {
	display: flex;
}

.logo {
	padding-top: 10px;
	width: 152px;
}

.logo img {
	width: 100%;
	height: 60px;
}

.sub_nav {
	flex: 1;
	text-align: right;
	position: relative;
}

.sub_nav li {
	display: inline-block;
	vertical-align: middle;
	padding-left: 48px;
	line-height: 80px;
}

.sub_nav a {
	font-size: 15px;
	color: #1E293B;
	padding: 5px 0;
}

.sub_nav a:hover,
.sub_nav a.active {
	opacity: 0.8;
}

.nav_tit {
	display: inline-block;
	padding: 0 15px;
	line-height: 40px;
}

.sub_nav li.on .nav_tit {
	background: rgba(30, 41, 59, 0.15);
	border-radius: 4px;
}

.sub_nav li:hover .n-section {
	display: flex;
}

.sub_nav li:nth-child(2) .n-section::after {
	background: #F8FAFC url(../images/icon-about.png) bottom right/269px 44px no-repeat;
}

.sub_nav li:nth-child(3) .n-section::after {
	background: #F8FAFC url(../images/icon-news.png) bottom right/138px 138px no-repeat;
}

.sub_nav li:nth-child(4) .n-section::after {
	background: #F8FAFC url(../images/icon-product.png) bottom right/128px 128px no-repeat;
}

.sub_nav li:nth-child(5) .n-section::after {
	background: #F8FAFC url(../images/icon-party.png) bottom right/138px 138px no-repeat;
}

.n-section {
	display: none;
	position: absolute;
	top: 80px;
	right: 0;
	align-items: flex-start;
	width: 894px;
	line-height: 24px;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding-top: 10px;
	overflow: hidden;
}

.n-section::before {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	content: '';
	border-radius: 8px;
	background: #fff;
}

.n-section::after {
	position: absolute;
	top: 10px;
	left: 0;
	width: 300px;
	bottom: 0;
	z-index: -1;
	content: '';
	border-radius: 8px 0 0 8px;
	background: #F8FAFC;
}

.n-header {
	flex-shrink: 0;
	width: 300px;
	padding: 30px;
	text-align: left;
}

.n-header h2 {
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.n-header em {
	display: block;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	color: #77879C;
	margin-bottom: 24px;
}

.n-header p {
	font-size: 14px;
	color: #77879C;
	line-height: 1.8;
}

.nav_item {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 40px;
	padding: 20px 40px;
	border-radius: 8px;
}

.nav_item p {
	position: relative;
	padding: 16px 0 8px;
	font-size: 16px;
	cursor: pointer;
	text-align: left;
}

.nav_item p a {
	display: block;
	color: #77879C;
}

.nav_item p a:hover {
	color: #1a1a1a;
}

.nav_item p.active {
	color: #1a1a1a;
}

.nav_item p:hover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #1a1a1a;
}

.nav_item p::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e8e8e8;
}

/* 底部 */
.footer {
	background: #0A2342;
	color: #fff;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 80px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	width: 280px;
	height: 120px;
}

.footer-center h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.footer-center p {
	font-size: 16px;
	margin-bottom: 10px;
}

.footer-center i {
	display: inline-block;
	vertical-align: middle;
	width: 24px 0;
	height: 24px;
}

.footer-right {
	display: flex;
	gap: 45px;
	justify-content: flex-end;
}

.qr-code {
	text-align: center;
}

.qr-code img {
	width: 144px;
	height: 144px;
	background: #fff;
	margin-bottom: 8px;
}

.qr-code span {
	font-size: 12px;
	opacity: 0.9;
}

.footer-bottom {
	padding-top: 20px;
	display: flex;
}

.footer-bottom p {
	flex: 1;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.fb_right {
	text-align: right;
}

.footer-bottom p a {
	padding-right: 15px;
}


/* banner */
.sub_banner,
.p_banner {
	position: relative;
	padding-top: 80px;
}

.sub_banner_img,
.p_banner_img {
	height: 240px;
	background-position: center bottom;
	background-size: 1920px auto;
	background-repeat: no-repeat;
}

.p_banner_img {
	height: 182px;
}

/**/
.sub_main {
	display: flex;
	padding: 48px 0;
}

.sub_menu {
	width: 180px;
}

.sub_menu h2 {
	padding-bottom: 24px;
	font-size: 16px;
	color: #77879C;
}

.sub_menu li {
	position: relative;
	margin: 10px 0;
	padding-left: 12px;
	line-height: 48px;
	font-size: 18px;
}

.sub_menu li.on {
	font-weight: bold;
	background: rgba(10, 35, 66, 0.1);
}

.sub_menu li.on::before {
	position: absolute;
	left: 0;
	width: 4px;
	height: 100%;
	content: '';
	background: #0A2342;
}

.sub_menu li a {
	display: block;
	cursor: pointer;
}

.sub_con {
	padding-left: 80px;
	flex: 1;
}

.about_con {
	padding-top: 30px;
	line-height: 40px;
	font-size: 16px;
	color: #2B3D53;
	word-break: break-all;
}

.about_con img{
	max-width: 100%;
	height: auto;
}

.a_txt {
	display: flex;
	padding-top: 30px;
	line-height: 28px;
}

.a_left {
	width: 436px;
	line-height: 30px;
	font-size: 16px;
	color: #2B3D53;
}

.a_left img{
	max-width: 100%;
	height: auto;
}

.a_right {
	flex: 1;
	padding-left: 40px;
}

.info-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.txt-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #E1E4EA;
	border-radius: 50%;
}

.txt-icon img {
	width: 24px;
	height: 24px;
}

.card-title {
	font-size: 16px;
	font-weight: 600;
	color: #1a202c;
}

.card-content {
	font-size: 16px;
	color: #4a5568;
	line-height: 26px;
}

.txt_dec {
	padding-top: 30px;
	font-size: 16px;
}

.a_box {
	position: relative;
	width: 820px;
	margin: 50px auto 0;
}

.a_panel {
	margin-left: -20px;
}

.a_panel li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding-left: 20px;
	width: 25%;
}

.a_con {
	text-align: center;
}

.a_icon {
	height: 164px;
}

.b_icon {
	height: 354px;
}

.a_icon img,
.b_icon img {
	width: 100%;
	height: 100%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
	;
}

.a_name {
	display: inline-block;
	position: relative;
	margin-top: 20px;
	padding: 0 36px;
}

.a_name::before,
.a_name::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	content: '';
}

.a_name::before {
	left: 0;
	background: url(../images/icon-mszuo.png) center no-repeat;
}

.a_name::after {
	right: 0;
	background: url(../images/icon-msyou.png) center no-repeat;
}

.a_name label {
	display: block;
	color: #B91C1C;
}

.left_arrow,
.right_arrow {
	opacity: 0.6;
	position: absolute;
	top: 40%;
	transform: translateY(-70%);
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.left_arrow {
	left: -50px;
	background: url("../images/left.png") center/100% 100% no-repeat;
}

.right_arrow {
	right: -50px;
	background: url("../images/right.png") center/100% 100% no-repeat;
}

.left_arrow:hover,
.right_arrow:hover {
	opacity: 1;
}

.cert-grid {
	padding-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.cert-card {
	background: #fff;
	border-radius: 8px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	cursor: pointer;
}


.cert-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cert-logo {
	width: 64px;
	height: 64px;
	background: #F8FAFC url(../images/icon-bfzg.png) center/40px 40px no-repeat;
	box-shadow: inset 0px 4px 4px 0px rgba(119, 135, 156, 0.15);
	border-radius: 4px 4px 4px 4px;
}

.cert-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cert-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a202c;
}

.cert-number {
	font-size: 13px;
	color: #718096;
}

.cert-action {
	opacity: 0.5;
	width: 44px;
	height: 44px;
	border: 1px solid #2B3D53;
	border-radius: 50%;
	background: rgba(43, 61, 83, 0.05) url(../images/icon-ck.png) center/24px 24px no-repeat;
	border: 1px solid rgba(43, 61, 83, 0.15);
}

.cert-card:hover .cert-action {
	opacity: 1;
}

.cover_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	background: rgba(0, 0, 0, 0.5);
}

.c_close {
	position: fixed;
	right: 50px;
	top: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 9999;
	background: url(../images/close.png) no-repeat;
}

.cert_panel {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1256px;
	height: calc(100% - 80px);
	overflow: auto;
}

.cert_pic {
	height: 100%;
}

.cert_pic img {
	float: left;
	max-width: 1000px;
	height: auto;
	margin-right: 40px;
}

.cert_panel::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	/* 设置滚动条的宽度 */
}

.cert_panel::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: #ccc;
	/* 设置滑块的背景颜色 */
}

.t_logo {
	margin: 0 auto;
	width: 120px;
	height: 66px;
	background: url(../images/icon-bfzg.png) center no-repeat;
}

/* 时间轴容器 */
.timeline-container {
	margin: 0 auto;
	padding: 40px 20px 80px;
	position: relative;
}

/* 中间轴线 */
.timeline-container::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	border-left: 1px solid rgba(119, 135, 156, 0.5);
	transform: translateX(-50%);
}

/* 时间轴项目 */
.timeline-item li {
	position: relative;
	display: flex;
	align-items: flex-start;
}


/* 左侧项目 */
.timeline-item li:nth-child(odd) {
	justify-content: flex-start;
	padding-right: calc(50% + 40px);
}

/* 右侧项目 */
.timeline-item li:nth-child(even) {
	justify-content: flex-end;
	padding-left: calc(50% + 40px);
}

/* 中间圆点 */
.timeline-item li::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50px;
	width: 8px;
	height: 8px;
	background: #0A2342;
	border: 3px solid #fff;
	border-radius: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 1px #0A2342;
	z-index: 2;
}

/* 连接线 */
.timeline-item li::before {
	content: '';
	position: absolute;
	top: 56px;
	height: 1px;
	background: #0A2342;
	width: 48px;
}

.timeline-item li:nth-child(odd)::before {
	right: 50%;
}

.timeline-item li:nth-child(even)::before {
	left: 50%;
}

/* 内容卡片 */
.timeline-content {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	width: 390px;
}

/* 图片区域 */
.timeline-img {
	width: 100%;
	height: 170px;
	overflow: hidden;
}

.timeline-img img {
	width: 100%;
	height: 100%;
}

/* 文字内容 */
.timeline-text {
	display: flex;
	padding: 20px;
}

.timeline-year {
	font-size: 32px;
	font-weight: bold;
	padding-left: 20px;
}

.timeline-desc {
	flex: 1;
	padding-right: 20px;
	font-size: 16px;
	line-height: 1.8;
	border-right: 1px solid rgba(119, 135, 156, 0.5);
}

/* 导航Tab */
.nav-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.nav-tabs a {
	display: block;
	margin: 18px 35px;
	line-height: 56px;
	color: #77879C;
	font-size: 16px;
	position: relative;
}

.nav-tabs a:hover {
	color: #0A2342;
}

.nav-tabs a.active {
	color: #0A2342;
	font-weight: 500;
}

.nav-tabs a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #0A2342;
}

.nav-tabs a.on {
	color: #C00000;
	font-weight: 500;
}

.nav-tabs a.on::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #C00000;
}

/* 主内容区 */
.main-content {
	width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

/* 新闻列表 */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* 新闻项 */
.news-item {
	display: flex;
	padding: 24px;
}

.news-item:hover {
	background: #F8FAFC;
}

/* 图片区域 */
.news-image {
	position: relative;
	width: 316px;
	height: 236px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
	transform: scale(1.05);
}


/* 内容区域 */
.news-content {
	flex: 1;
	padding: 10px 25px;
	display: flex;
	flex-direction: column;
}

/* 分类标签 */
.news-tag {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: #666;
	margin-bottom: 10px;
}

.news-tag::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #2B3D53;
	border-radius: 50%;
	margin-right: 8px;
}

/* 新闻标题 */
.n-title {
	font-size: 20px;
	color: #0A2342;
	margin-bottom: 15px;
	line-height: 1.5;
}

/* 新闻摘要 */
.news-summary {
	font-size: 16px;
	color: #2B3D53;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* 日期 */
.n-date {
	font-size: 14px;
	color: #77879C;
}

/* 分页器 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	gap: 8px;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	line-height: 28px;
	padding: 0 12px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	text-decoration: none;
	color: #666;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
}

.pagination a:hover {
	border-color: #0A2342;
	color: #0A2342;
}

.pagination .current {
	background: #0A2342;
	border-color: #0A2342;
	color: #fff;
}

.pagination .prev,
.pagination .next {
	font-size: 16px;
}

.path_b {
	padding-top: 80px;
	line-height: 70px;
	font-size: 16px;
}

.path_b a {
	padding: 0 5px 0 0;
	color: #77879C;
}

.p_arrow {
	display: inline-block;
	margin-right: 5px;
	width: 10px;
	height: 10px;
	border: 1px solid #77879C;
	border-right: none;
	border-bottom: none;
	transform: rotate(-45deg);
}

.path_b span {
	padding: 0 5px;
}

.c_content {
	padding: 80px 100px;
	margin-bottom: 40px;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	background: #fff;
}

.c_tit {
	padding-bottom: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	color: #0A2342;
}

.c_tip {
	text-align: center;
	font-weight: 400;

	font-size: 16px;
	color: #77879C;
}

.txt_con {
	padding: 50px 0;
	line-height: 40px;
	font-size: 16px;
	color: #2B3D53;
	word-break: break-all;
}

.txt_con img{
	max-width: 100%;
	height: auto;
}

.filter-tabs {
	padding-top: 40px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.filter-tab {
	margin-bottom: 10px;
	padding: 0px 20px;
	line-height: 32px;
	border: 1px solid #77879C;
	border-radius: 20px;
	background: #fff;
	color: #77879C;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-tab:hover {
	border-color: #1a3a5c;
	color: #1a3a5c;
}

.filter-tab.active {
	background: #1a3a5c;
	border-color: #1a3a5c;
	color: #fff;
}

.p-grid {
	padding-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.p-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.p-image {
	position: relative;
	width: 100%;
	height: 256px;
	overflow: hidden;
}

.p-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.p-card:hover .p-image img {
	transform: scale(1.05);
}

.p-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 0px 14px;
	line-height: 26px;
	background: #1a3a5c;
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
}

.p-info {
	padding: 25px;
}

.p-name {
	font-size: 24px;
	font-weight: 600;
	color: ##2B3D53;
	margin-bottom: 12px;
}

.p-desc {
	font-size: 16px;
	color: #2B3D53;
	line-height: 1.8;
	margin-bottom: 20px;
}

.p-link {
	display: inline-flex;
	align-items: center;
	color: #77879C;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.p-link:hover {
	color: #1a3a5c;
}

.p-link::after {
	content: '→';
	margin-left: 6px;
	transition: transform 0.3s ease;
}

.p-link:hover::after {
	transform: translateX(4px);
}

.d_panel {
	display: flex;
}

.d_content {
	flex: 1;
	padding-left: 60px;
}

.product-category {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #0A2342;
	margin-bottom: 15px;
}

.product-category::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #0A2342;
	border-radius: 50%;
}

.product-title {
	font-size: 24px;
	font-weight: bold;
	color: #0A2342;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 5px;
}

.product-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #0A2342;
}

.d_con {
	line-height: 32px;
	color: #2B3D53;
	font-size: 16px;
}

.advantages-title {
	font-size: 24px;
	font-weight: bold;
	color: #0A2342;
	margin-top: 30px;
	padding-left: 15px;
	position: relative;
}

.advantages-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background: #0A2342;
}

.t_intro {
	padding: 50px 0;
	line-height: 30px;
	font-size: 16px;
	color: #2B3D53;
}

/* 团队成员卡片网格 */
.team-grid {
	padding: 20px 0 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* 团队成员卡片 */
.team-card {
	min-height: 560px;
	background: #FFFFFF;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	border: 1px solid #E6E7E9;
	overflow: hidden;
}


/* 照片区域 */
.team-photo {
	width: 100%;
	height: 385px;
	overflow: hidden;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.team-card:hover .team-photo img {
	transform: scale(1.05);
}

/* 信息区域 */
.team-info {
	padding: 25px;
}

/* 姓名和标签区域 */
.team-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.team-name {
	font-size: 24px;
	font-weight: bold;
	color: #0A2342;
}

.team-tags {
	padding-left: 10px;
	flex: 1;
}

.team-tags span {
	margin-top: 5px;
	display: inline-block;
	padding: 0px 10px;
	line-height: 20px;
	background: rgba(220, 38, 38, 0.15);
	color: #C00000;
	font-size: 12px;
	border-radius: 4px;
}

/* 描述文字 */
.team-desc {
	display: -webkit-box;
	font-size: 16px;
	color: #2B3D53;
	line-height: 1.8;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t_image {
	text-align: center;
}

.t_image img {
	max-width: 1000px;
	height: auto;
}

.t_name {
	padding: 25px 0;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	color: #0A2342;
}

.t_tags {
	padding: 0;
	text-align: center;
}

.notice_b {
	padding: 50px 0;
}

.notice-container {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 24px 0;
}

.notice-list {
	list-style: none;
}

.notice-list li a {
	display: flex;
	align-items: center;
	padding: 16px 32px;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.3s ease;
}

.notice-list li:last-child a {
	border-bottom: none;
}

.notice-list li a:hover {
	background-color: #f8fafc;
}

/* 左侧圆点 */
.notice-dot {
	width: 6px;
	height: 6px;
	background-color: #77879C;
	border-radius: 50%;
	margin-right: 12px;
	flex-shrink: 0;
}

/* 标题 */
.notice-title {
	flex: 1;
	font-size: 18px;
	font-weight: bold;
	color: #2B3D53;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.notice-list li a:hover .notice-title {
	color: #0A2342;
}

/* 日期时间 */
.notice-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #77879C;
	flex-shrink: 0;
	margin-left: 20px;
}

/* 时钟图标 */
.notice-date::before {
	content: '';
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2377879C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
}

.spe_info {
	margin-top: 20px;
	padding: 20px;
	background: #F6F7F8;
	color: #2B3D53;
	border-radius: 8px;
	border: 1px solid #E6E7E9;
}

.spe_t {
	font-weight: bold;
	font-size: 18px;
	color: #0A2342;
	margin-bottom: 10px;
}

.spe_icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 24px;
	height: 24px;
	background: url(../images/icon-zdgg.png) center no-repeat;
}

.spe_con {
	display: flex;
	line-height: 40px;
	font-size: 16px;
}

.spe_line {
	flex: 1;
	margin: 0 10px;
	position: relative;
}

.spe_line::after {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	border-top: 1px solid #E6E7E9;
	content: '';
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 20px 0 50px;
}

.advantage-card {
	background: #F8FAFC;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 20px;
	color: #2B3D53;
	font-size: 16px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.advantage-title {
	font-size: 16px;
	padding-bottom: 15px;
}

.advantage-desc {
	line-height: 1.8;
}